home *** CD-ROM | disk | FTP | other *** search
/ PD Collection CD 1 / PD Collection CD 1.iso / textual / tex / files / !preview / RCS / h / output < prev    next >
Encoding:
Text File  |  1990-07-24  |  757 b   |  57 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    gtoal:1.2;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     91.03.02.14.00.04;  author gtoal;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     91.03.02.13.56.55;  author gtoal;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @Initial release
  22. @
  23.  
  24.  
  25. 1.2
  26. log
  27. @IAY's update
  28. @
  29. text
  30. @/* output.h */
  31.  
  32. /* Needs <stdio.h>.  */
  33.  
  34. /* An OUTPUTTER is a function which can empty a buffer into some destination.
  35.    The stdio FWRITE is an example.  */
  36.  
  37. typedef size_t (*outputter)(const void *, size_t, size_t, FILE *);
  38.  
  39. extern void save_sprite_into_file (char *);
  40.  
  41. extern void save_drawfile_into_file (char *);
  42.  
  43. extern void output_saveas (char *);
  44.  
  45. extern void output_send (wimp_msgstr *);
  46.  
  47. /* EOF */
  48. @
  49.  
  50.  
  51. 1.1
  52. log
  53. @Initial revision
  54. @
  55. text
  56. @@
  57.